1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
import CommentForm from '@components/CommentForm/CommentForm';
import CommentsList from '@components/CommentsList/CommentsList';
import { getLayout } from '@components/Layouts/Layout';
import PostFooter from '@components/PostFooter/PostFooter';
import PostHeader from '@components/PostHeader/PostHeader';
import Sharing from '@components/Sharing/Sharing';
import ToC from '@components/ToC/ToC';
import { config } from '@config/website';
import { t } from '@lingui/macro';
import { getAllPostsSlug, getPostBySlug } from '@services/graphql/queries';
import { NextPageWithLayout } from '@ts/types/app';
import { ArticleMeta, ArticleProps } from '@ts/types/articles';
import { loadTranslation } from '@utils/helpers/i18n';
import { addPrismClasses, translateCopyButton } from '@utils/helpers/prism';
import { GetStaticPaths, GetStaticProps, GetStaticPropsContext } from 'next';
import Head from 'next/head';
import { useRouter } from 'next/router';
import Prism from 'prismjs';
import { ParsedUrlQuery } from 'querystring';
import { useEffect } from 'react';
import styles from '@styles/pages/Page.module.scss';
const SingleArticle: NextPageWithLayout<ArticleProps> = ({ post }) => {
const {
author,
comments,
content,
dates,
intro,
seo,
subjects,
thematics,
title,
} = post;
const meta: ArticleMeta = {
author,
commentCount: comments.length,
dates,
thematics,
};
const router = useRouter();
const locale = router.locale ? router.locale : config.defaultLocale;
useEffect(() => {
addPrismClasses();
Prism.highlightAll();
});
useEffect(() => {
translateCopyButton(locale);
}, [locale]);
return (
<>
<Head>
<title>{seo.title}</title>
<meta name="description" content={seo.metaDesc} />
</Head>
<article className={styles.article}>
<PostHeader intro={intro} meta={meta} title={title} />
<aside className={styles.toc}>
<ToC />
</aside>
<div
className={styles.body}
dangerouslySetInnerHTML={{ __html: content }}
></div>
<PostFooter subjects={subjects} />
<aside className={styles.aside}>
<Sharing title={title} excerpt={intro} />
</aside>
<section className={styles.comments}>
<CommentsList comments={comments} />
<CommentForm articleId={post.databaseId} />
</section>
</article>
</>
);
};
SingleArticle.getLayout = getLayout;
interface PostParams extends ParsedUrlQuery {
slug: string;
}
export const getStaticProps: GetStaticProps = async (
context: GetStaticPropsContext
) => {
const translation = await loadTranslation(
context.locale!,
process.env.NODE_ENV === 'production'
);
const { slug } = context.params as PostParams;
const post = await getPostBySlug(slug);
const breadcrumbTitle = post.title;
return {
props: {
breadcrumbTitle,
post,
translation,
},
};
};
export const getStaticPaths: GetStaticPaths = async () => {
const allSlugs = await getAllPostsSlug();
return {
paths: allSlugs.map((post) => `/article/${post.slug}`),
fallback: true,
};
};
export default SingleArticle;
|